From 8233de7c5355f502eb335d00682c42e2f8dde456 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Wed, 2 Feb 2022 12:31:45 +0100 Subject: fix: handle getStaticPaths fallback I had errors with next build because of fallback. I need to return early if the path does not exists, if not Next complains about undefined variables. I don't think it was related but I also fix the paths format in getStaticPaths, I forgot the params object in some dynamic routes. --- src/pages/article/[slug].tsx | 52 ++++++++++++++++++++++++-------------------- 1 file changed, 29 insertions(+), 23 deletions(-) (limited to 'src/pages/article/[slug].tsx') diff --git a/src/pages/article/[slug].tsx b/src/pages/article/[slug].tsx index d0ea68a..d00d939 100644 --- a/src/pages/article/[slug].tsx +++ b/src/pages/article/[slug].tsx @@ -4,14 +4,17 @@ import { getLayout } from '@components/Layouts/Layout'; import PostFooter from '@components/PostFooter/PostFooter'; import PostHeader from '@components/PostHeader/PostHeader'; import Sidebar from '@components/Sidebar/Sidebar'; +import Spinner from '@components/Spinner/Spinner'; import { Sharing, ToC } from '@components/Widgets'; import { getAllPostsSlug, getPostBySlug } from '@services/graphql/queries'; import styles from '@styles/pages/Page.module.scss'; import { NextPageWithLayout } from '@ts/types/app'; import { ArticleMeta, ArticleProps } from '@ts/types/articles'; import { settings } from '@utils/config'; +import { getFormattedPaths } from '@utils/helpers/format'; import { loadTranslation } from '@utils/helpers/i18n'; import { addPrismClasses, translateCopyButton } from '@utils/helpers/prism'; +import { usePrismTheme } from '@utils/providers/prism'; import { GetStaticPaths, GetStaticProps, GetStaticPropsContext } from 'next'; import Head from 'next/head'; import { useRouter } from 'next/router'; @@ -21,9 +24,32 @@ import { useEffect } from 'react'; import { useIntl } from 'react-intl'; import { Blog, BlogPosting, Graph, WebPage } from 'schema-dts'; import '@utils/plugins/prism-color-scheme'; -import { usePrismTheme } from '@utils/providers/prism'; const SingleArticle: NextPageWithLayout = ({ post }) => { + const intl = useIntl(); + const router = useRouter(); + const locale = router.locale ? router.locale : settings.locales.defaultLocale; + + useEffect(() => { + addPrismClasses(); + Prism.highlightAll(); + }); + + useEffect(() => { + translateCopyButton(locale, intl); + }, [intl, locale]); + + const { setCodeBlocks } = usePrismTheme(); + + useEffect(() => { + const allPre: NodeListOf = document.querySelectorAll( + 'pre[data-prismjs-color-scheme' + ); + setCodeBlocks(allPre); + }, [setCodeBlocks, router.asPath]); + + if (router.isFallback) return ; + const { author, comments, @@ -48,29 +74,8 @@ const SingleArticle: NextPageWithLayout = ({ post }) => { wordsCount: info.wordsCount, }; - const intl = useIntl(); - const router = useRouter(); - const locale = router.locale ? router.locale : settings.locales.defaultLocale; const articleUrl = `${settings.url}${router.asPath}`; - useEffect(() => { - addPrismClasses(); - Prism.highlightAll(); - }); - - useEffect(() => { - translateCopyButton(locale, intl); - }, [intl, locale]); - - const { setCodeBlocks } = usePrismTheme(); - - useEffect(() => { - const allPre: NodeListOf = document.querySelectorAll( - 'pre[data-prismjs-color-scheme' - ); - setCodeBlocks(allPre); - }, [setCodeBlocks, router.asPath]); - const webpageSchema: WebPage = { '@id': `${articleUrl}`, '@type': 'WebPage', @@ -192,9 +197,10 @@ export const getStaticProps: GetStaticProps = async ( export const getStaticPaths: GetStaticPaths = async () => { const allSlugs = await getAllPostsSlug(); + const paths = getFormattedPaths(allSlugs); return { - paths: allSlugs.map((post) => `/article/${post.slug}`), + paths, fallback: true, }; }; -- cgit v1.2.3